Find the date of the first monday of a given week

Find the date of the first monday of a given week.
Sample Year and week :
2018, 41

Output:

.. code-block:: py

import time

print(time.asctime(time.strptime(‘2018 41 1’, ‘%Y %W %w’)))

Output:

Mon Oct  8 00:00:00 2018